Mini Project - HTML¶

Members:

  • Wai Hong Fung
  • Mae Lam
  • Ho Kong Leung
  • Mayuresh Nerurkar

Plotly Graph¶

In [7]:
# Create a scatter plot
fig = px.scatter(x=X[:, 0], y=X[:, 1], color=y)

# Set axis labels and title
fig.update_layout(
    xaxis_title='Sepal Length',
    yaxis_title='Sepal Width',
    title='Iris Dataset - Sepal Length vs Sepal Width'
)

# Display the plot
fig.show()

Matplot graph¶

Below is a matplot graph using the Iris dataset.

Markdowns¶

A Markdown Table¶

name 0 1 2
Sepal Width 4.3 4.4 4.4
Sepal Length 2 3.2 2

A Markdown Equation¶

quadratic formula¶

$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$

Colored Markdown text using HTML tags¶

This text is in red. while this text is in blue.

Adding an Image¶

this is what an Iris looks like.